home *** CD-ROM | disk | FTP | other *** search
/ Champak 62 / Volume 62 - JOGO DISK .iso / Games / mycutepets.swf / scripts / DefineButton2_762 / BUTTONCONDACTION on(release).as < prev    next >
Text File  |  2008-03-17  |  288b  |  10 lines

  1. on(release){
  2.    if(name_tf.text.length > 0)
  3.    {
  4.       so.data.records.all.push({id:so.data.records.all.length + 1,name:name_tf.text,score:point});
  5.       so.data.records.all.sortOn("score",Array.NUMERIC | Array.DESCENDING);
  6.       so.flush();
  7.       gotoAndStop("score_1");
  8.    }
  9. }
  10.